home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / art&graf.ix / art-3484 / gifinfo / std.h < prev   
Text File  |  1992-11-25  |  294b  |  17 lines

  1. /* STD.H - My own standard header file...
  2.  */
  3.  
  4. #define LOCAL static
  5. #define IMPORT extern
  6.  
  7. #define FAST register
  8.  
  9. typedef short WORD;
  10. typedef unsigned short UWORD;
  11. typedef char TEXT;
  12. typedef unsigned char UTINY;
  13. typedef long LONG;
  14. typedef unsigned long ULONG;
  15. typedef int INT;
  16.  
  17.